feat: add apps list, orgs list, deployments list subcommands#94
Open
crowlbot wants to merge 1 commit into
Open
feat: add apps list, orgs list, deployments list subcommands#94crowlbot wants to merge 1 commit into
crowlbot wants to merge 1 commit into
Conversation
This was referenced May 13, 2026
dabbbef to
3594eb9
Compare
Fourth slice of the agent-ergonomics series. Adds the three list/inspect
commands an agent typically needs to navigate the resource hierarchy:
- `deno deploy apps list [--limit N] [--cursor C]` — paginated apps in
the current org. JSON: `{ items, nextCursor, org }`. Uses
`apps.listByPage`.
- `deno deploy orgs list` — orgs reachable by the token. JSON:
`[{ id, slug, name, plan }]`. Uses `orgs.list`.
- `deno deploy deployments list [--app A] [--limit N] [--cursor C] [--status S]`
— paginated revisions. JSON: `{ items, nextCursor, org, app }`.
Uses `revisions.listByPage`.
All three honor the global `--json` flag and the global error envelope
from the foundation PR.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
3b79e96 to
83f452e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Stacked on #93 (which is stacked on #92 → #91). Adds the three list/inspect commands an agent typically needs to navigate the resource hierarchy without having seen the dashboard.
What's in this PR
All three honor the global `--json` flag (human tables via `tablePrinter` otherwise), and the global error envelope from #91 maps any NOT_AUTHENTICATED/NOT_FOUND/NETWORK responses without per-command code.
Test plan
Notes
`apps`/`orgs`/`deployments` are introduced as new top-level subcommands rather than extending the existing `switch` or `logs` patterns, because each has its own pagination/filter shape and the help surface stays cleaner that way.
🤖 Generated with Claude Code